home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / comms / non-internet / samba / source / checkos.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-06-26  |  593b  |  19 lines

  1. #!/bin/sh
  2. if [ x"$1" = x"" ]; then
  3. cat << EOF
  4. =====================================================================
  5. You forgot to uncomment a host type and flags in the Makefile. If your
  6. host type does not appear in the Makefile then choose one that you
  7. think is similar and once you have it working then add a new host type
  8. to the Makefile and includes.h. Please also send me the output of the
  9. command "uname" on your system so this can be automated at some future
  10. time. 
  11.  
  12. Andrew.Tridgell@anu.edu.au
  13. =====================================================================
  14. EOF
  15. exit 1
  16. fi
  17.  
  18. exit 0
  19.